From: Richard M. Stallman Date: Thu, 16 Aug 2007 02:21:29 +0000 (+0000) Subject: (Fcommandp): Add parens to clarify. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~17390 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=21dca1d7d2768df4fde3edca4ffd2b149b5cb1e1;p=emacs.git (Fcommandp): Add parens to clarify. --- diff --git a/src/eval.c b/src/eval.c index 6ce64bc4d8c..e53d164a354 100644 --- a/src/eval.c +++ b/src/eval.c @@ -2073,7 +2073,7 @@ then strings and vectors are not accepted. */) /* Strings and vectors are keyboard macros. */ if (STRINGP (fun) || VECTORP (fun)) - return NILP (for_call_interactively) ? Qt : Qnil; + return (NILP (for_call_interactively) ? Qt : Qnil); /* Lists may represent commands. */ if (!CONSP (fun))